home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / pdc / sample / makefile < prev    next >
Makefile  |  1990-04-06  |  458b  |  38 lines

  1. EXECS = append args date fahr hello null sizeofs Pi Savage Sieve
  2.  
  3. all:    $(EXECS)
  4.  
  5. append: append.c
  6.     ccx append.c
  7.  
  8. args:    args.c
  9.     ccx args.c
  10.  
  11. date:    date.c
  12.     ccx date.c
  13.  
  14. fahr:    fahr.c
  15.     ccx -lmath fahr.c
  16.  
  17. hello:    hello.c
  18.     ccx hello.c
  19.  
  20. null:    null.c
  21.     ccx null.c
  22.  
  23. sizeofs: sizeofs.c
  24.     ccx sizeofs.c
  25.  
  26. Pi:    Pi.c
  27.     ccx -lmath Pi.c
  28.  
  29. Savage:    Savage.c
  30.     ccx -lmath Savage.c
  31.  
  32. Sieve:    Sieve.c
  33.     ccx Sieve.c
  34.  
  35. clean:
  36.     delete (append|args|date|fahr|hello|null|sizeofs|Pi|Savage|Sieve)
  37.  
  38.